home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / gnulib-68881 / Makefile.in < prev    next >
Makefile  |  1995-05-23  |  2KB  |  68 lines

  1. #### Start of system configuration section. ####
  2.  
  3. srcdir =    @srcdir@
  4. VPATH =        @srcdir@
  5.  
  6. # Common prefix for machine-independent installed files.
  7. prefix =    @prefix@
  8.  
  9. # Common prefix for machine-dependent installed files.
  10. exec_prefix =    @exec_prefix@
  11.  
  12. bindir =    $(exec_prefix)/bin
  13. libdir =    $(exec_prefix)/Sys/libs
  14.  
  15. INSTALL =    @INSTALL@
  16. INSTALL_DATA =    @INSTALL_DATA@
  17.  
  18. CC =        @CC@
  19.  
  20. CFLAGS =    @CFLAGS@
  21. LDFLAGS =    @LDFLAGS@
  22.  
  23. RANLIB =    @RANLIB@
  24. AR =        ar
  25.  
  26. #### End system configuration section ####
  27.  
  28. FLAVOR_CFLAGS =    -m$(CPU) -m$(FPU)
  29. OTHER_CFLAGS =    -fomit-frame-pointer
  30. ALL_CFLAGS =    $(CFLAGS) $(FLAVOR_CFLAGS) $(OTHER_CFLAGS) $(INCS) $(DEFS)
  31.  
  32. DEFS =        -DIEEE_SINGBAS -DHAVE_ATEXIT
  33. INCS =        -I$(srcdir) -I$(srcdir)/../gnulib -I$(srcdir)/../library -I$(srcdir)/../include
  34. LIB =        libgnu.a
  35. SHELL =        /bin/sh
  36.  
  37. .c.o:
  38.         $(CC) $(ALL_CFLAGS) -c $< -o $@
  39.  
  40. .s.o:
  41.         cp $< x.c
  42.         $(CC) $(ALL_CFLAGS) -traditional -E x.c -o x.s
  43.         $(CC) $(ALL_CFLAGS) -c x.s -o $@
  44.         rm -f x.c x.s
  45.  
  46. SRC =        adddf3.s addsf3.s cmpdf2.s cmpsf2.s divdf3.s divsf3.s divsi3.s \
  47.         extendsfdf2.s fabs.s fixdfsi.s fixunsdfsi.s floatsidf.s frexp.s \
  48.         ldexp.s modf.s modsi3.s muldf3.s mulsf3.s mulsi3.s negdf2.s \
  49.         negsf2.s subdf3.s subsf3.s truncdfsf2.s udivsi3.s umodsi3.s \
  50.         umulsi3.s
  51.  
  52. OBJ =        adddf3.o addsf3.o cmpdf2.o cmpsf2.o divdf3.o divsf3.o divsi3.o \
  53.         extendsfdf2.o fabs.o fixdfsi.o fixunsdfsi.o floatsidf.o frexp.o \
  54.         ldexp.o modf.o modsi3.o muldf3.o mulsf3.o mulsi3.o negdf2.o \
  55.         negsf2.o subdf3.o subsf3.o truncdfsf2.o udivsi3.o umodsi3.o \
  56.         umulsi3.o
  57.  
  58. $(LIB):        $(OBJ)
  59.         rm -f $@
  60.         $(AR) rv $@ $(OBJ)
  61.         $(RANLIB) $@
  62.  
  63. clean:
  64.         rm -f *!
  65.  
  66. clobber:    clean
  67.         rm -f $(OBJ) $(LIB)
  68.